home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / docs / mags / astorm7.lha / amigastorm_7 / source / primjer3.c < prev    next >
C/C++ Source or Header  |  1999-02-18  |  237b  |  12 lines

  1. #include <stdio.h>
  2. main()
  3. {
  4.         int
  5.         mat[5][5]={{1,1,1,1,1},
  6.              {2,2,2,2,2},
  7.              {3,3,3,3,3},
  8.              {4,4,4,4,4},
  9.              {5,5,5,5,5}};
  10.  
  11.         printf("Na mjestu 3,3 nalazi se %d\n",mat[3][3]);
  12. }